home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-09-08 | 424 b | 24 lines | [TEXT/CWIE] |
- /* sys/unistd.h */
-
- #include <unistd.h>
-
- #include <string.h> // for strerror
-
- #ifndef ENOENT
- #define ENOENT ERANGE
- #endif
-
- #ifndef EIO
- #define EIO ERANGE
- #endif
-
- #ifndef F_OK
- /* access function */
- #define F_OK 0 /* test for existence of file */
- #define X_OK 0x01 /* test for execute or search permission */
- #define W_OK 0x02 /* test for write permission */
- #define R_OK 0x04 /* test for read permission */
- #endif
-
- /* */
-